home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-2.iso / Files II / Prog / M / MacPerl 4.13 tool.sit / Perl Tool ƒ / t / base / cond.t next >
Encoding:
Text File  |  1993-10-23  |  393 b   |  20 lines  |  [TEXT/MPS ]

  1. #!./perl
  2.  
  3. # $Header: cond.t,v 4.0 91/03/20 01:48:54 lwall Locked $
  4.  
  5. # make sure conditional operators work
  6.  
  7. print "1..4\n";
  8.  
  9. $x = '0';
  10.  
  11. $x eq $x && (print "ok 1\n");
  12. $x ne $x && (print "not ok 1\n");
  13. $x eq $x || (print "not ok 2\n");
  14. $x ne $x || (print "ok 2\n");
  15.  
  16. $x == $x && (print "ok 3\n");
  17. $x != $x && (print "not ok 3\n");
  18. $x == $x || (print "not ok 4\n");
  19. $x != $x || (print "ok 4\n");
  20.